home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 44 / PC Actual CD 44.iso / Linux / Cygwin / full.exe / Disk1 / data1.cab / Tools / H-i586-cygwin32 / i586-cygwin32 / include / sys / utime.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-12-04  |  304 b   |  23 lines

  1. #ifndef _SYS_UTIME_H
  2. #define _SYS_UTIME_H
  3.  
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. #include <_ansi.h>
  8. #include <sys/types.h>
  9.  
  10. struct utimbuf 
  11. {
  12.   time_t actime;
  13.   time_t modtime; 
  14. };
  15.  
  16. int _EXFUN(utime, (const char *__path, struct utimbuf *__buf));
  17.  
  18. #ifdef __cplusplus
  19. };
  20. #endif
  21.  
  22. #endif /* _SYS_UTIME_H */
  23.